
#divSlides {
	width:960px;
	height:420px;
	position:relative;
}

/*
	Slideshow
*/

#slides {
	position:absolute;
	top:15px;
	left:0px;
	z-index:100;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:960px;
	overflow:hidden;
	position:relative;
	
}

/*
	Each slide
	Important:
	Set the width of your slides
	If height not specified height will be set by the slide content
	Set to display block
*/

.slides_container div.slide {
	width:960px;
	height:394px;
	display:block;
}

/*
	Pagination
*/

.pagination {
	margin:26px auto 0;
	width:100px;
}

.pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:27px;
	height:0;
	_height:0px;
	padding-top:12px;
	_padding-top:12px;
	background-image:url(../img/pagination.png);
	background-repeat:no-repeat;
	background-position:0 0px;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -15px;
	_background-position:0 -15px;
}